From: Paul Eggert Date: Tue, 3 May 2011 06:13:54 +0000 (-0700) Subject: * process.c (Fformat_network_address): Fix typo: args2 -> *args2. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~3911^2~19 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=7b886c27701923e302731c667cfe782532660847;p=emacs.git * process.c (Fformat_network_address): Fix typo: args2 -> *args2. --- diff --git a/src/ChangeLog b/src/ChangeLog index 727ad387de7..96e6aa41256 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2011-05-03 Paul Eggert + * process.c (Fformat_network_address): Fix typo: args2 -> *args2. + * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times). * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601). diff --git a/src/process.c b/src/process.c index 59d1b9ea77f..3dc096e7d60 100644 --- a/src/process.c +++ b/src/process.c @@ -1384,7 +1384,7 @@ usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) { if (EQ (coding_systems, Qt)) { - args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2); + args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2); args2[0] = Qstart_process; for (i = 0; i < nargs; i++) args2[i + 1] = args[i]; GCPRO2 (proc, current_dir);